home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / blitzbasic / blitz-list200994.lha / blitz-list / 000592_blitz-list-request_Mon Sep 19 22:54:40 1994.msg < prev   
Internet Message Format  |  1994-09-20  |  3KB

  1. Received: from funet.fi (funet.fi [130.230.1.1]) by kantti.helsinki.fi (8.6.9/8.6.5) with ESMTP id WAA04270 for <blitz-list@helsinki.fi>; Mon, 19 Sep 1994 22:54:13 +0300
  2. Received: from gboro.rowan.edu by funet.fi with SMTP (PP);
  3.           Mon, 19 Sep 1994 22:53:01 +0300
  4. Received: by gboro.rowan.edu (5.57/Ultrix3.0-C)    id AA06783;
  5.           Mon, 19 Sep 94 15:51:09 -0400
  6. Received: from MARS/MAILQUEUE by mars.rowan.edu (Mercury 1.11);
  7.           Mon, 19 Sep 94 15:51:08 +0500
  8. Received: from MAILQUEUE by MARS (Mercury 1.11); Mon, 19 Sep 94 15:50:46 +0500
  9. From: MACIEJ GORNY <GORN4907@mars.rowan.edu>
  10. Organization:  Rowan College of NJ
  11. To: blitz-list@helsinki.fi
  12. Date:          Mon, 19 Sep 1994 15:50:40 EST
  13. Subject:       Re: WTitle mess
  14. Priority: normal
  15. X-Mailer:     Pegasus Mail v3.1 (R1)
  16. Message-Id: <1F022AA7D9E@mars.rowan.edu>
  17. MIME-Version: 1.0
  18. Content-Type: text/plain; charset="us-ascii"
  19. Content-Transfer-Encoding: 7bit
  20. Status: RO
  21.  
  22. > Date sent:      Mon, 19 Sep 1994 11:49:33 +0100
  23. > From:           sis3149@sisvax.sis.port.ac.uk (HANG-FIRE)
  24. > To:             GORN4907@mars.rowan.edu, blitz-list@helsinki.fi
  25. > Subject:        Re: WTitle mess
  26.  
  27. > > I use ASLFileRequest to get a file, then I assign whatever it returns 
  28. > > (a file with its path) to a string variable and try to use WTitle to 
  29. > > change window's title to display that file:
  30. > >      WTitle filepath$,"my screens name"
  31. > > The screen's and window's titles get somehow screwd up after the next 
  32. > > window event it would seem. It contains some random strings, from 
  33. > > file requester, or etc...
  34. > I got window title cockups when using previous versions of the window library
  35. > in Blitz.  My problems though have cleared up since I started using the
  36. > newer versions.
  37. > What would cause mine to fuckup is something like:
  38. >         WTitle "Help me please","Steve's little prog..."
  39. >         Execute_ "Time",0,0
  40. > This would cause the window title to change to "Time" - very dodgy indeed.
  41. > Wtitle most probably just stores the string you give and then calls the OS
  42. > command SetWindowTitle.  You could try doing this yourself:
  43. >         mytitle$="Myname"
  44. >         SetWindowTitle_ peek.l(addr window(0)),mytitle$,0
  45. >             (The 0 on the end means don't change the screen title
  46. >              This stops the title being constantly redraw).
  47. > Do you subscribe to Blitzs bum magazine? If you do then you should get a version
  48. > of the library off them that works properly.
  49. > Hope this helps (in some little way ;-)),
  50. > Steve Mc.
  51. That is EXACTLY the kind of simptoms that I got. After using Asl 
  52. requester wtitle would change the window's title to either 
  53. requester's title, or some other random string that had nothing to do 
  54. with that particular file request. Thanks for help Steve, I hope it 
  55. works!..
  56. maciej
  57.